|
SAP NetWeaver 7.40 SP 07 KMC | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface IUriMapperService
Maps arbitrary length resource IDs (URIs and RIDs) to fixed length shorter ID strings and vice versa.
| Field Summary | |
|---|---|
static String |
SERVICE_ID
The identifier of this service. |
| Method Summary | |
|---|---|
void |
forceSingleIDMapping(RID rid,
String constantId)
ATTENTION: for SAP internal use of transport system only Forces mapping of a given RID onto a given constant unique ID. |
void |
forceSingleIDMapping(RID rid,
String constantId,
String variableId)
ATTENTION: for SAP internal use of transport system only Forces mapping of a given RID onto a given constant unique ID and a given variable ID. |
String |
getConstantID(RID rid)
Maps a given RID onto a constant unique ID. |
String |
getConstantID(URI uri)
Deprecated. as of NW04. |
String[] |
getConstantIDs(IRidList ridList)
Maps a list of RIDs to a list of constant unique IDs. |
String |
getCreateConstantID(RID rid)
Maps a given RID onto a constant unique ID. |
String |
getCreateConstantID(URI uri)
Deprecated. as of NW04. |
String[] |
getCreateConstantIDs(IRidList rids)
Maps a given set of RIDs onto a set of constant unique IDs. |
String |
getCreateVariableID(RID rid)
Maps a given RID onto a variable unique ID. |
String |
getCreateVariableID(URI uri)
Deprecated. as of NW04. |
RID |
getGuidRIDFromRID(RID rid)
Maps a given GUID RID onto the matching RID. |
RID |
getRIDFromConstantID(String constantID)
Maps a given constant ID onto the matching RID. |
RID |
getRIDFromGuidRID(RID rid)
Maps a given GUID RID onto the matching RID. |
RID |
getRIDFromVariableID(String variableID)
Maps a given variable ID onto the matching RID. |
URI |
getUriFromConstantID(String constantID)
Deprecated. as of NW04. |
URI |
getUriFromVariableID(String variableID)
Deprecated. as of NW04. |
String |
getVariableID(RID rid)
Maps a given RID onto a variable unique ID. |
String |
getVariableID(URI uri)
Deprecated. as of NW04. |
String[] |
getVariableIDs(IRidList ridList)
Maps a list of RIDs to a list of variable unique IDs. |
void |
removeMultipleIDs(RID id)
Remove mapping for the given RID and all descendants, e.g. id/*. |
void |
removeMultipleIDs(URI id)
Deprecated. as of NW04. |
boolean |
removeSingleID(RID id)
Remove mapping for the given RID. |
boolean |
removeSingleID(URI id)
Deprecated. as of NW04. |
void |
renameMultipleIDs(RID fromId,
RID toId)
Rename mapping for the given RID and all descendants, e.g. id/*. |
void |
renameMultipleIDs(URI fromId,
URI toId)
Deprecated. as of NW04. |
boolean |
renameSingleID(RID fromId,
RID toId)
Rename mapping for the given RID. |
boolean |
renameSingleID(URI fromId,
URI toId)
Deprecated. as of NW04. |
| Methods inherited from interface com.sapportals.wcm.service.IService |
|---|
getDescription, getDescription, getID |
| Field Detail |
|---|
static final String SERVICE_ID
| Method Detail |
|---|
String getConstantID(RID rid)
throws WcmException
null is returned.
rid - to map
WcmException - Exception raised in failure situation
String getConstantID(URI uri)
throws WcmException
null is returned.
uri - to map
WcmException - Exception raised in failure situation
String[] getConstantIDs(IRidList ridList)
throws WcmException
null entry.
ridList - List of RIDs
WcmException
String getCreateConstantID(RID rid)
throws WcmException
rid - to map
WcmException - Exception raised in failure situation
String[] getCreateConstantIDs(IRidList rids)
throws WcmException
rids - List of RIDs
WcmException - Exception raised in failure situation
String getCreateConstantID(URI uri)
throws WcmException
uri - to map
WcmException - Exception raised in failure situation
URI getUriFromConstantID(String constantID)
throws WcmException
constantID - TBD: Description of the incoming method parameter
WcmException - Exception raised in failure situation
RID getRIDFromConstantID(String constantID)
throws WcmException
constantID - TBD: Description of the incoming method parameter
WcmException - Exception raised in failure situation
RID getGuidRIDFromRID(RID rid)
throws WcmException
rid - rid
WcmException - Exception raised in failure situation
RID getRIDFromGuidRID(RID rid)
throws WcmException
rid - guid rid
WcmException - Exception raised in failure situation
String getVariableID(URI uri)
throws WcmException
null is returned.
uri - to map
WcmException - Exception raised in failure situation
String getVariableID(RID rid)
throws WcmException
null is returned.
rid - to map
WcmException - Exception raised in failure situation
String getCreateVariableID(URI uri)
throws WcmException
uri - to map
WcmException - Exception raised in failure situation
String getCreateVariableID(RID rid)
throws WcmException
rid - to map
WcmException - Exception raised in failure situation
URI getUriFromVariableID(String variableID)
throws WcmException
variableID -
WcmException - Exception raised in failure situation
RID getRIDFromVariableID(String variableID)
throws WcmException
variableID -
WcmException - Exception raised in failure situation
String[] getVariableIDs(IRidList ridList)
throws WcmException
null entry.
ridList - List of RIDs
WcmException
void removeMultipleIDs(URI id)
throws WcmException
id - exact URI and descendants to remove
WcmException - Exception raised in failure situation
void removeMultipleIDs(RID id)
throws WcmException
id - exact RID and descendants to remove
WcmException - Exception raised in failure situation
boolean removeSingleID(URI id)
throws WcmException
id - exact URI to remove mapping for.
true if a mapping was removed.
WcmException - Exception raised in failure situation
boolean removeSingleID(RID id)
throws WcmException
id - exact RID to remove mapping for.
true if a mapping was removed.
WcmException - Exception raised in failure situation
void renameMultipleIDs(URI fromId,
URI toId)
throws WcmException
fromId - exact URI and descendants to rename.toId - new URI to rename to.
WcmException - Exception raised in failure situation
void renameMultipleIDs(RID fromId,
RID toId)
throws WcmException
fromId - exact RID and descendants to rename.toId - new RID to rename to.
WcmException - Exception raised in failure situation
boolean renameSingleID(URI fromId,
URI toId)
throws WcmException
fromId - exact URI to rename.toId - new URI to rename to.
true if a mapping was renamed.
WcmException - Exception raised in failure situation
boolean renameSingleID(RID fromId,
RID toId)
throws WcmException
fromId - exact RID to rename.toId - new RID to rename to.
true if a mapping was renamed.
WcmException - Exception raised in failure situation
void forceSingleIDMapping(RID rid,
String constantId)
throws WcmException
rid - to mapconstantId - id to map to
WcmException - Exception raised in failure situation
void forceSingleIDMapping(RID rid,
String constantId,
String variableId)
throws WcmException
rid - to mapconstantId - id to map tovariableId - to map to
WcmException - Exception raised in failure situation| Access Rights |
|---|
| SC | DC | Public Part | ACH |
|---|---|---|---|
[sap.com] KMC-CM
|
[sap.com] tc/km/frwk
|
api
|
EP-KM-CM
|
[sap.com] KMC-WPC
|
[sap.com] tc/kmc/wpc/wpcfacade
|
api
|
EP-PIN-WPC-WCM
|
|
SAP NetWeaver 7.40 SP 07 KMC | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||