Package com.perforce.p4java.admin
Interface IProperty
-
- All Known Implementing Classes:
Property
public interface IPropertyProvides storage of property values for use by applications that wish to persistently store their configuration settings and other property data in the server.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.DategetModified()Gets the modified date.java.lang.StringgetModifiedBy()Gets the modified by user.java.lang.StringgetName()Gets the name of the property.java.lang.StringgetSequence()Gets the sequence number of the property.longgetTime()Gets the time in milliseconds.java.lang.StringgetValue()Gets the value of the property.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Gets the name of the property.- Returns:
- the name
-
getSequence
java.lang.String getSequence()
Gets the sequence number of the property.- Returns:
- the sequence number
-
getValue
java.lang.String getValue()
Gets the value of the property.- Returns:
- the value
-
getTime
long getTime()
Gets the time in milliseconds.- Returns:
- the time in milliseconds
-
getModified
java.util.Date getModified()
Gets the modified date.- Returns:
- the modified date
-
getModifiedBy
java.lang.String getModifiedBy()
Gets the modified by user.- Returns:
- the modified by user
-
-